<?php 
function month_name($int) {
  return 
date( 'F' , mktime(1, 1, 1, (int)$int, 1) );
}
echo 
month_name(10); // October
1